/* Header */
header {
    background-color: var(--main-green);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

header h1 {
    font-family: 'Lora', serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

header p {
    font-size: 16px;
    color: var(--cream);
}

/* Media Section */
.media-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 50px;
}

.media-showcase {
    background-color: var(--white);
    border: 3px solid var(--main-green);
    border-radius: 8px;
    padding: 50px;
    margin-bottom: 60px;
}

/* Media Header */
.media-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--main-green);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-green), #1a4d44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 12px rgba(32, 97, 85, 0.3);
}

.header-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--main-green);
    margin-bottom: 5px;
}

.header-text p {
    font-size: 16px;
    color: #666;
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.preview-card {
    background-color: #f9f9f9;
    border: 2px solid var(--main-green);
    border-radius: 8px;
    overflow: hidden;
}

/* Preview Collage - Music (Square aspect) */
.preview-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 180px;
    width: 101%;
    background-color: var(--cream);
    overflow: hidden;
}

/* Preview- Film */
.preview-collage.film-collage {
    grid-template-columns: 1fr;
    height: 180px;
}

.collage-image {
    width: 100%;
    height: 100%;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Preview Info */
.preview-info {
    padding: 20px;
    background-color: var(--white);
}

.preview-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--main-green);
    margin-bottom: 8px;
}

.preview-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Explore Button */
.explore-btn {
    display: inline-block;
    background-color: var(--main-green);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(32, 97, 85, 0.2);
}

.explore-btn:hover {
    background-color: #1a4d44;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .media-section {
        padding: 0 30px;
    }

    .media-showcase {
        padding: 30px;
    }

    .media-header {
        flex-direction: column;
        text-align: center;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .header-text h2 {
        font-size: 36px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-collage {
        height: 160px;
    }

    .preview-collage.film-collage {
        height: 200px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 42px;
    }

    .header-text h2 {
        font-size: 32px;
    }

    .preview-collage {
        height: 140px;
    }

    .preview-collage.film-collage {
        height: 180px;
    }
}